for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export class HtmlColumn {
constructor(public readonly text: string, public readonly html: string) {}
public toString() {
return this.text;
}